home *** CD-ROM | disk | FTP | other *** search
/ Mac Action 1996 January / mac-action-07.iso / mac / Inside Action / Beatrix Potter / Peter Rabbit / DSTORIES.DXR / 00204.ls < prev    next >
Encoding:
Text File  |  1995-07-13  |  529 b   |  26 lines

  1. on exitFrame
  2.   set isRolledOver to 0
  3.   if rollOver(45) then
  4.     puppetSprite(47, 1)
  5.     set the locV of sprite 47 to the mouseV
  6.     set the locH of sprite 47 to the mouseH
  7.     set isRolledOver to 1
  8.   else
  9.     puppetSprite(47, 0)
  10.   end if
  11.   if rollOver(46) then
  12.     puppetSprite(48, 1)
  13.     set the locV of sprite 48 to the mouseV
  14.     set the locH of sprite 48 to the mouseH
  15.     set isRolledOver to 1
  16.   else
  17.     puppetSprite(48, 0)
  18.   end if
  19.   if isRolledOver then
  20.     cursor(200)
  21.   else
  22.     cursor(-1)
  23.   end if
  24.   updateStage()
  25. end
  26.